home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 September (IDG) / Sep99.iso / Shareware World / Utilities / Data & Time / Ambry™ / Documentation / pages / globals / ispirits-standard.css < prev   
Encoding:
Cascading Style Sheet File  |  1998-11-20  |  2.0 KB  |  130 lines  |  [TEXT/R*ch]

  1. /*
  2. =============================================================================
  3. Island Spirits Standard CSS
  4.  
  5. Copyright (c) 1998 Island Spirits Software
  6. =============================================================================
  7. vN.N.NN   dd-Mmm-yy   XXX   Initial, Bugfix, or Addition
  8. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  9. v0.0.01   05-Aug-98   rjr   Initial
  10. =============================================================================
  11. */
  12.  
  13. /*
  14.     Standard dark colors
  15.         Green: rgb(0, 133, 77) or hex #00854d
  16.         Blue: rgb(162, 200, 243) or hex #a2c8f3
  17.  
  18.     Standard light colors
  19.         Green: rgb(204, 255, 204) or hex #ffccff
  20.         Blue: rgb(232, 241, 252) or hex #e8f1fc
  21. */
  22.  
  23.  
  24. /* change the body to have a white background */
  25.  
  26. BODY {
  27.     background-image: url(bg.gif);
  28.     background-color: rgb(204, 255, 204);
  29.     color: black;
  30.     font-size: 11pt;
  31.     font-family: verdana, helvetica, sans-serif
  32. }
  33.  
  34.  
  35. /* first, let's use some real link colors */
  36.  
  37. A:link {
  38.     color: rgb(0, 133, 77);
  39.     background-color: transparent;
  40.     text-decoration: none
  41. }
  42.  
  43. A:active {
  44.     color: rgb(0, 133, 77);
  45.     background-color: transparent;
  46.     text-decoration: none
  47. }
  48.  
  49. A:visited {
  50.     color: rgb(0, 133, 77);
  51.     background-color: transparent;
  52.     text-decoration: none
  53. }
  54.  
  55. A:hover {
  56.     color: rgb(204, 255, 204); 
  57.     background-color: rgb(0, 133, 77);
  58.     text-decoration: none
  59. }
  60.  
  61. /* various headers */
  62. H1 {
  63.     font-weight: bold;
  64.     font-size: 15pt
  65. }
  66.  
  67. H2 {
  68.     font-weight: bold;
  69.     font-size: 11pt
  70. }
  71.  
  72. H3 {
  73.     font-weight: bold;
  74.     font-size: 10pt
  75. }
  76.  
  77.  
  78. /* table styles */
  79.  
  80. TABLE {
  81.     background: rgb(232, 241, 252);
  82. }
  83.  
  84. TR.header {
  85.     background-color: rgb(0, 133, 77);
  86.     color: white;
  87.     font-weight: bolder;
  88.     font-size: 13pt
  89. }
  90.  
  91.  
  92. /* generic classes */
  93.  
  94. .small {
  95.     font-size: smaller
  96. }
  97.  
  98. .sidebar {
  99.     border-left: 2px red solid;
  100.     padding-left: 4px
  101. }
  102.  
  103. .notes {
  104.     color: blue
  105. }
  106.  
  107. .new {
  108.     color: red
  109. }
  110.  
  111. .deleted {
  112.     text-decoration: line-through
  113. }
  114.  
  115. .inline-head {
  116.     font-weight: bolder;
  117.     font-size: smaller;
  118.     padding-right: 3em
  119. }
  120.  
  121. .warning {
  122.     background-color: #ff3333;
  123.     font-size: smaller
  124. }
  125.  
  126. .legalese {
  127.     font-family: geneva, arial, sans-serif;
  128.     font-size: 9pt
  129. }
  130.